ABC123 B - Five Dishes
提出
code: python
import itertools
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
ans = float('inf')
def time(n):
if (n % 10 == 0):
return n
else:
res = (n + 10) - (n % 10)
return res
for i in itertools.permutations(dishes, 5):
res = 0
for j in range(4):
if (res < ans):
ans = res
print(ans)